home *** CD-ROM | disk | FTP | other *** search
Makefile | 1993-06-26 | 717 b | 25 lines |
- #
- # Makefile for Mark Williams C
- # Version 2.00 required.
- # Please ignore warnigs about a constant being promoted to long
- # and about some unused variables.
- # Fix your timezone at the top of TYME.C before compiling
- # Define RECURSE only if you want the expand a directory
- # to all its children feature for `sz', when you specify
- # a directory name as an arg to `sz'.
- #
- # Jwahar Bammi
- #
- #
- SRC = common.c rz.c sz.c transfer.c util.c main.c tyme.c zm.c fileio.c hi5025.s
- OBJ = common.o rz.o sz.o transfer.o util.o main.o tyme.o zm.o fileio.o hi5025.o
- CFLAGS = -O -DMWC -DRECURSE -V -DBIGSTACK
-
- zmdm.prg : $(OBJ)
- cc -O -o zmdm.prg $(OBJ) -s -x -V
-
- $(OBJ) : common.h zmdm.h decl.h
-
- clean:
- rm *.o
-